home *** CD-ROM | disk | FTP | other *** search
-
- echo = off ( Self explanatory)
- ctty nul ( This is important. Console output is turned off)
- path c:\msdos ( May differ on other systems )
- dir *.com/w>ind ( The directory is written on "ind" ONLY name entries)
- edlin ind<1 ( "Ind" is processed with EDLIN so only file names appear)
- debug ind<2 ( New batch program is created with debug)
- edlin name.bat<3 ( This batch goes to an executable form because of EDLIN)
- ctty con ( Console interface is again assigned)
- name ( Newly created NAME.BAT is called.
-
-